home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 03 - 1987 / 03.02 Feb 87 / MacApp Text Editor / DemoText.make < prev    next >
Encoding:
Text File  |  1986-12-29  |  1.3 KB  |  54 lines  |  [TEXT/MPS ]

  1. # Copyright © 1986 Apple Computer, Inc.  All Rights Reserved.
  2.  
  3. AppName = DemoText
  4.  
  5. Creator = 'SS04'
  6.  
  7. #    List the system libraries that your application needs to link with.  
  8. #    If you are not sure, list everything and the linker will tell you
  9. #    which ones it did not need
  10.  
  11. NeededSysLibs = ∂
  12.             "{Libraries}RunTime.o" ∂
  13.             "{Libraries}Interface.o" ∂
  14.             "{PLibraries}PasLib.o"
  15.  
  16. #    List here the MacApp building blocks that your application uses
  17.  
  18. BuildingBlockIntf =  ∂
  19.                 "{SrcMacApp}UPrinting.p" ∂
  20.                 "{SrcMacApp}UTEView.p"
  21.  
  22. #    List the same MacApp building blocks as object files (for linking)
  23.  
  24. BuildingBlockObjs = ∂
  25.                 "{ObjMacApp}UPrinting.p.o" ∂
  26.                 "{ObjMacApp}UTEView.p.o"
  27.  
  28. #    List any additional pascal interface files which your application uses
  29.  
  30. OtherInterfaces = 
  31.  
  32. #    By default MacApp.make links the above libraries, all of MacApp,
  33. #    and the files UAppName.p.o and MAppName.p.o
  34. #    List any additional files that your program links with:
  35.  
  36. OtherLinkFiles = 
  37.  
  38. #    Specify any -sn (segment alias) linker options that you want included.
  39.  
  40. OtherSegMappings = 
  41.  
  42. #    List the dependencies of the additional files 
  43. #    (and special build rules, if any)
  44.  
  45.  
  46. #    List Rez files other than AppName.r that need to Rez'ed with the application
  47.  
  48. OtherRezFiles = 
  49.  
  50. #    List resource files that the Rez file includes
  51.  
  52. OtherRsrcFiles = ∂
  53.                 "{RezMacApp}Printing.rsrc"
  54.